Keycloak REST Services 1.3.1.Final

Path: / admin / realms / {realm} / clients

List of clients belonging to this realm.

Path parameters:
realm - realm name (not id!)

Sub-Resources
Resources
NameDescription
{id}Get representation of the client.

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clientsList of clients belonging to this realm.
POST /admin/realms/{realm}/clientsCreate a new client.

Method Detail

GET /admin/realms/{realm}/clients

List of clients belonging to this realm.

HTTP Example:
GET /admin/realms/{realm}/clients
API Example:

ClientsResource.getClients({'realm': /* name realm name (not id!) */});

Output:
List<ClientRepresentation> -
Produces:
application/json

POST /admin/realms/{realm}/clients

Create a new client. Client client_id must be unique!

HTTP Example:
POST /admin/realms/{realm}/clients
API Example:

ClientsResource.createClient({'realm': /* name realm name (not id!) */,
  '$entity': /* rep */});

Input:
ClientRepresentation
Output:
Response -
Consumes:
application/json

Keycloak REST Services 1.3.1.Final